home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PRUS101.ZIP / TPRINT.PAS < prev    next >
Pascal/Delphi Source File  |  1994-12-05  |  624b  |  28 lines

  1. program test;
  2.  
  3. {
  4. *****************************************
  5. *               TEST.PAS                *
  6. *****************************************
  7. *                                       *
  8. *   Testprogramm für die UNIT FPRINT    *
  9. *                                       *
  10. *****************************************
  11. * (c) TSP, Matthias Tichy 1994          *
  12. *****************************************
  13. }
  14.  
  15.  
  16. uses fprint;
  17.  
  18. begin
  19.   Init;
  20.   setTDT('brhl8las.tdt');
  21.   BoldOn;
  22.   printeln('Hi, hier ist die UNIT FPRINT!!');
  23.   lf;
  24.   BoldOff;
  25.   printeln('Viel Spaß mit der Pascal.GER & PRUSSG');
  26.   FF;
  27.   done;
  28. end.